home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00273_Script_GESTION_BTON_CLOSE_FEN_DUMB < prev    next >
Text File  |  2004-12-05  |  812b  |  34 lines

  1. global gL_Zap
  2. property p_cettePiste, p_Nodepiste,p_nom_Acteur
  3. ----------------------------------
  4. on beginsprite me
  5.   p_Nodepiste = me.spriteNum
  6.   p_cettePiste = sprite(p_Nodepiste)
  7.   p_nom_Acteur = p_cettePiste.member.name
  8. end
  9. ----------------------------------- 
  10. on mouseEnter
  11.   if the pauseState = 1 then exit
  12.   cursor 280
  13.   p_cettePiste. member = p_nom_Acteur&"_R"
  14.   updateStage
  15. end
  16. ----------------------------------- 
  17. on mouseWithin
  18.   if the pauseState = 1 then exit
  19.   cursor 280
  20. end
  21. ---------------------------------
  22. on mouseLeave
  23.   if the pauseState = 1 then exit
  24.   cursor -1
  25.   puppetsprite  p_Nodepiste , FALSE
  26. end
  27. ----------------------------------- 
  28. on mouseUp
  29.   if the pauseState = 1 then exit
  30.   cursor -1
  31.   gL_Zap[24].close()
  32. end
  33. ----------------------------------- 
  34.